home *** CD-ROM | disk | FTP | other *** search
- /*
- Loads the current display into a different browser
- $VER: ChangeBrowser.awebrx 1.0 (27.8.99)
- (c) Neil Bothwick, Wirenet
- */
-
- options results
- parse arg args
- parse var args Browser ' ' URL
- CDName = left(URL, pos(':',URL))
-
- WebSites = CDName'AACD/WebSites/'
-
- select
- when Browser = IB then address command 'Run >NIL: 'WebSites'IBrowse/IBrowse file://localhost/'URL 'CONFIGDIR 'WebSites'IBrowse'
- when Browser = V then address command 'Run >NIL: 'WebSites'Voyager/V file:///'URL
- otherwise nop
- end
-
- 'quit force'
- exit
-
-